【例子介绍】自动部署网站(IIS)C#源码 软件
C#语言写的一个软件,用来自动发布网站用的。 目前测试Win7,Win10,server08 R2,server12 R2。都已经成功运行!!! 如果各位不愿意使用C币购买源码也可以去看我的博客,有相关的类可以使用!博客地址:...
【相关图片】
【源码结构】
文件清单
└── 自动部署网站
├── HTML
│ └── Index.html
├── 自动部署网站
│ ├── AddWeb.cs
│ ├── App.config
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Config
│ │ │ │ ├── DropIIS
│ │ │ │ │ └── Drop_IIS.bat
│ │ │ │ └── Win7
│ │ │ │ └── Install_IIS.bat
│ │ │ ├── Microsoft.Web.Administration.dll
│ │ │ ├── 自动部署网站.exe
│ │ │ ├── 自动部署网站.exe.config
│ │ │ └── 自动部署网站.pdb
│ │ ├── Debug27.rar
│ │ └── Release
│ ├── Config
│ │ ├── DropIIS
│ │ │ └── Drop_IIS.bat
│ │ └── Win7
│ │ └── Install_IIS.bat
│ ├── DLL
│ │ ├── System.ServiceProcess.dll
│ │ └── WebAdministrationDLL
│ │ ├── Win10
│ │ │ └── Microsoft.Web.Administration.dll
│ │ └── Win7
│ │ └── Microsoft.Web.Administration.dll
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── IIS.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── TempPE
│ │ ├── 自动部署网站.csprojAssemblyReference.cache
│ │ ├── 自动部署网站.csproj.CopyComplete
│ │ ├── 自动部署网站.csproj.CoreCompileInputs.cache
│ │ ├── 自动部署网站.csproj.FileListAbsolute.txt
│ │ ├── 自动部署网站.csproj.GenerateResource.cache
│ │ ├── 自动部署网站.exe
│ │ ├── 自动部署网站.Form1.resources
│ │ ├── 自动部署网站.pdb
│ │ └── 自动部署网站.Properties.Resources.resources
│ ├── Program.cs
│ ├── Properties
│ │ ├── app.manifest
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 自动部署网站.csproj
│ └── 自动部署网站.csproj.user
└── 自动部署网站.sln
20 directories, 43 files
评论